|
If Text Contains Action |
Declaration |
<AMIFCONTAINS ACTION="text [options]" TEXT="text" SUBSTRING="text" USERE="YES" USECASE="YES" FOUNDTEXTVARIABLE="text [variable]" INDEXVAR="text [variable]"> </AMIF> |
See Also |
Executes the steps immediately following this step if the specified text is (or is not) contained within the target text. Otherwise, step execution follows the next Else step, or End If step.
To check the contents of a piece of text and take conditional action depending on whether it is found.
Specifies whether the condition should check for the characters to be contained or not contained within the text.
The available options are:
contain: The IF block will be executed if the characters are contained in the text.
not_contain: The IF block will be executed if the characters are not contained in the text.
Specifies the text to search.
Specifies the text to search for inside the target text.
Specifies whether the search performed should be case sensitive.
Specifies whether the FIND parameter is a regular expression. If the option is no, the Find parameter contains literal text, if the option is yes, the find parameter contains a regular expression.
Specifies the variable to receive the text that was found. This parameter is useful if a regular expression was used for the find text.
Specifies the variable to receive the index position of the text that was found.
Standard Error Handling Options
This action also includes the standard "Error Causes" and "On
Error" failure handling options/tabs
More on Error Handling Options
Variables and Expressions
All text fields allow the use of expressions by surrounding the expression
in percentage signs (example: %MYVARIABLE%, %Left('Text',2)%). To help
construct these expressions, a popup expression builder is available in
all these fields by pressing F2.
More on variables...
More on expressions...
More on the expression builder...
<AMIFCONTAINS TEXT="The rabbit ran away" SUBSTRING="ran">
<AMMESSAGEBOX>the word 'ran' was found inside the search text</AMMESSAGEBOX>
</AMIF>
.